home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Mac Game Programming Gurus
/
TricksOfTheMacGameProgrammingGurus.iso
/
More Source
/
Libraries
/
SAT 2.3b4
/
Demo ƒ
/
SAT Invaders demo ƒ
/
gameGlobals.p
< prev
next >
Wrap
Text File
|
1994-11-02
|
888b
|
43 lines
{=================================================}
{========= GameGlobals, globals for SATInvaders ==========}
{=================================================}
{ Example file for Ingemars Sprite Animation Toolkit. }
{ © Ingemar Ragnemalm 1992 }
{ See doc files for legal terms for using this code. }
{ This file defines the resource numbers and global variables for SATInvaders.}
unit GameGlobals;
interface
{$IFC UNDEFINED THINK_PASCAL}
uses
Types, QuickDraw, Menus;
{$ENDC}
const
{ Resource numbers}
fileMenuRes = 1004; { Race menu }
aboutAlrt = 1000; { About box }
gameWindRes = 262; { game window }
{ File menu }
run = 1;
sound = 3;
fastAnimation = 4;
quit = 6;
var
{ Menu handles. There isn't any apple menu here, since TransSkel will}
{ be told to handle it itself.}
fileMenu: MenuHandle;
{Level number.}
level: longint;
implementation
end.